BELOW THE BELT — building the macOS VST3
========================================

A macOS plugin binary (a Mach-O .vst3 bundle) can only be produced on a
Mac. It cannot be cross-compiled from Windows, so it is not included here.
Building it on any Mac takes one command set and a few minutes.

REQUIREMENTS
------------
- macOS with Xcode command-line tools:   xcode-select --install
- CMake 3.22+:                            brew install cmake

BUILD
-----
Copy the whole BelowTheBelt project folder (the one containing
CMakeLists.txt and the Source/ and "Arnav Singh Vol 2 - 52 Organic Top
Kicks" folders) onto the Mac, then in Terminal:

    cd /path/to/BelowTheBelt
    cmake -B build -G Xcode
    cmake --build build --config Release

The finished plugin will be at:
    build/BelowTheBelt_artefacts/Release/VST3/BelowTheBelt.vst3

For an Apple-Silicon + Intel universal binary, configure with:
    cmake -B build -G Xcode -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64"

INSTALL
-------
Copy BelowTheBelt.vst3 to:
    ~/Library/Audio/Plug-Ins/VST3
(or /Library/Audio/Plug-Ins/VST3 for all users), then rescan in your DAW.

Want an AU as well? Add  AU  to the FORMATS line in CMakeLists.txt
(juce_add_plugin) before building.
